Options:
a. $("button").click(function(){ $("div").animate({ left:'250', height:'250', width:'250' });
b. $("button").click(function(){ $("div").animate({ left:'250', height:'+250', width:'+250' }); });
c. $("button").click(function(){ $("div").animate({ left:'250', height:'+=250', width:'+=250' }); });
d. none
Reveal Answer